home *** CD-ROM | disk | FTP | other *** search
/ BBS in a Box 5 / BBS in a Box -Volume V (BBS in a Box) (April 1992).iso / Files / Prog / M / MPWGCC (Machines).cpt / Miscellaneous / move-if-change < prev    next >
Encoding:
Text File  |  1989-09-26  |  120 b   |  16 lines  |  [TEXT/MPS ]

  1. #!/bin/sh
  2. if
  3. test -r $2
  4. then
  5. if
  6. cmp $1 $2 > /dev/null
  7. then
  8. echo $2 is unchanged
  9. rm $1
  10. else
  11. mv $1 $2
  12. fi
  13. else
  14. mv $1 $2
  15. fi
  16.